home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / COMMS / CONNECTOR.ZIP / Changes next >
Text File  |  1998-07-05  |  16KB  |  468 lines

  1. Changes 1.02 - 1.03
  2. -------------------
  3.  
  4. - there is still a problem with saving spool files, sometimes
  5.   it seems to crash connector, don't know why. :-(
  6. - starting a zmodem receive on the other side when there where
  7.   no files in the connector send window, crashed connector
  8.   sometimes.Now it will abort the transfer.
  9. - ctrl-y and ctrl-z didn't work correctly with german keyboards.
  10. - fixed a problem with the right alt key.
  11. - It's now possible to start multiple copies of connector.
  12.   Just copy some config files (one must have the filename "config"
  13.   the others doesn't matter) into the new config directory.
  14. - removed the !Convert program.
  15.  
  16. Changes 1.01 - 1.02
  17. -------------------
  18.  
  19. - during a ascii transfer, there was no way to send a char via keyboard.
  20.   (e.g. the sender waited for a <return> from the receiver to start
  21.    the transfer ... ) 
  22.  
  23. Changes 1.00 - 1.01
  24. -------------------
  25.  
  26. - filetypes were truncated to a length of 1024.
  27.   I lifted this limit to 4096, I hope this is enough.
  28. - Disc cache up to 1Mb is now possible, gives better file
  29.   transfer rates on slow computers.
  30. - implemented the BBS Mouse protocol.
  31.   Press ctrl-alt-select to activate and ctrl-alt-adjust to deactivate it.
  32.   The pointer shape will change, when activated.
  33.   
  34.  
  35. Changes 0.99b-1.00
  36. ------------------
  37.  
  38. Hey, I removed the beta !!! ;-)
  39. BTW my email address has changed from:
  40. topdog@rbg.informatik.th-darmstadt.de
  41. to topdog@rbg.informatik.tu-darmstadt.de
  42. there is a difference !!
  43. Same with the web page address.
  44. If you don't like this long www address use this http://come.to/amz
  45.  
  46. - included system variables into the script language
  47.   e.g. send <Connector$Dir> (quite senseless this example)
  48. - optinal use of the dosmap for file type conversion.
  49.   thanks to Jon Ripley for his file type mappings.
  50. - new STATUSLINE <ON> <OFF> command.
  51.  
  52.   here is a small example ...
  53.  
  54.   REM Logon
  55.  
  56.   DIAL
  57.   REM WAIT "password:"
  58.   STATUSLINE OFF
  59.   OSCLI "Filer_Run <Connector$Dir>.SetPass"
  60.   SEND <password>
  61.   SEND "|M"
  62.   OSCLI "unset password"
  63.   STATUSLINE ON
  64.  
  65.   END
  66.  
  67.   "SetPass" is a program to set the variable password.
  68.  
  69. - included the special character set in vt102.(not all, but better 
  70.   than nothing ;-) )
  71. - ctrl-space didn't work.
  72. - better file transfer error handling.
  73. - many other bug fixes, can't remember ... I'm getting old.
  74.    
  75.  
  76. Changes 0.98b-0.99b
  77. -------------------
  78. - In the cept emulation the main window wasn't correctly resized while
  79.   using the smart button bar.
  80. - added flow type to the serial info window.
  81. - two new script commands (header only)
  82.    PORT <number>
  83.    FLOW <NO|HARDWARE|XON/XOFF|BOTH>
  84. - the online time didn't reset while logging into another BBS.
  85. - sometimes exporting text to edit crashed the program.
  86. - baudrate 230400 didn't work in the script file.
  87. - new command line option to auto start a script file.
  88.   just add to the !Run file "Run <connector$Dir>.!Runimage <script filename>"
  89. - new option to clear screen when online.
  90. - Dragging files to the upload window will queue them.
  91.   To start the transfer you can use "send all" in the upload menu,
  92.   or just start the upload in the BBS.
  93.   Dragging files to the toolbar should be the same as before,
  94.   it starts the upload immediately.
  95. - new script command RECORD
  96.   RECORD "<filename>" starts a spool record, if no file name
  97.   is given it will take the current date and time as a file name.
  98.   It will be saved in the new 'SpoolFiles' directory.
  99.   Pressing the OK button in the 'save as' spool window will also
  100.   save it to the 'SpoolFiles' directory.
  101.  
  102. Changes 0.97b-0.98b
  103. -------------------
  104. - shift-dragging a file in the main window opens the spool window.
  105. - file transfer didn't work with the Pipe A/B blockdrivers.
  106.   Zmodem transfer between two !Connector prg's (using PipeA/B drivers)
  107.   doesn't work ... I have no idea why ... 
  108. - new serial information window.(press the down button in the bottom window
  109.   to open it)
  110. - finally a new and really nice !Connector icon.
  111. - a new option to turn on/off the avatar emulation.
  112. - many bug fixes in the ascii file transfer,import and export code.
  113. - 3 new configure icons.
  114. - some cosmetic changes in the templates files.
  115. - new script commands HANGUP and QUIT.
  116. - moved some options from the special menu to the new vt100/ANSI option windows.
  117. - implemented the WAITUNTIL command.
  118. - max online time in the edit window should work now. 
  119. - updated the help file a bit.
  120.  
  121. Changes 0.96b-0.97b
  122. -------------------
  123. - dragging a file directly from e.g. UUcoder to the connector send window/icon
  124.   didn't work. 
  125. - selecting from bottom to top didn't work.
  126. - checking for free space was buggy.(only on big harddiscs >=4GB)
  127. - my code to find out the max filename length of the filesystem didn't
  128.   work on all computers ... there is now a new truncate filename option
  129.   in the file transfer window.    
  130. - new script commands IF, IFN, GOTO, GOSUB, RETURN, SET, INC, DEC.
  131.   small example:
  132.   
  133.   loop:
  134.   SET counter 10
  135.   GOSUB do_this  
  136.   DEC counter
  137.   IF counter > 0 GOTO loop
  138.  
  139.   IFN WAIT "test",400 GOTO something_different
  140.   SEND "Ok."
  141.   GOTO the_end
  142.   something_different:
  143.   SEND "Not ok."
  144.  
  145.   the_end:
  146.  
  147.   END
  148.  
  149.   do_this:
  150.   SEND "blub"
  151.   RETURN
  152.  
  153.   The script commands are NOT case sensitive, but the variables and labels 
  154.   are case sensitive.
  155.   
  156.   -fixed a 'drive empty' error ... (many thanks to Eytan Abrahams for
  157.    helping me)
  158.    
  159.   -A new script file which logs on to Arcade, downloads mail, 
  160.    delets it off the BBS and then logs off.(from Eytan Abrahams) 
  161.   
  162. Changes 0.95b-0.96b
  163. -------------------
  164. - the dial window couldn't be closed when opened via menu.
  165. - new smartbutton bar.
  166. - Connector didn't work with the telnet block driver.
  167.   (actually DRIVER_EXAMINE didn't work, now I'm using DRIVER_CHECKRX)
  168. - the serial output buffer size was wrong while using something
  169.   different than the Internal/InternalPC driver.
  170.  
  171. Changes 0.94b-0.95b
  172. -------------------
  173. - new dial window.
  174. - faster CEPT emulation. (on arm2 computers up to 5 times faster)
  175. - fixed a new bug in the online time update.
  176.   (I used swi "wimptextop_string_width" but it doesn't exist in RiscOS 3.1)
  177.  
  178. Changes 0.93b-0.94b
  179. -------------------
  180. - three new script commands:
  181.  
  182.   KEY "F1","what ever"  , only F1-F12 supported yet.
  183.   OSCLI "what ever"
  184.   UPLOAD "filename"
  185.   
  186. - faster XYModem receive on slow computers.
  187. - XModem send didn't work.
  188. - online time update worked only with System and Homerton.Medium font.
  189. - included riscos filetype sending/receiving in YZModem.
  190. - different file transfer configuration.
  191. - WAIT "whatever" worked only while the modem was online.
  192. - added to the special menu:
  193.     - reset terminal status
  194.     - send break signal 
  195.     - fkeys window 
  196. - included a logfile
  197. - better main window handling in lowres screen modes.
  198. - german umlaute didn't work in the cept emulation.
  199. - configurable font size (8x16 and 8x18).
  200. - pressing adjust on the file transfer type icon opens the config window.
  201. - pressing adjust on the special icon opens the function keys window.
  202.  
  203. Changes 0.92b-0.93b
  204. -------------------
  205. - different window layout.
  206. - disc full checking didn't work, now I'm using XOS_FSControl 49
  207.   (well, my RiscOS 2 prm's are a bit old XOS_FSControl 33 is the last one :-( )
  208. - the rename option truncated the filename to 10 chars.  
  209.  
  210. Changes 0.91b-0.92b
  211. -------------------
  212. - changing between cept and vt100/ansi crashed the computer sometimes.
  213. - online time with seconds (not flicker free).
  214. - new fonts.
  215. - improved the emulation speed.
  216. - new spool window with frame option (pauses the playback before a 
  217.   clear screen ESC sequence is decoded)
  218. - included checking for disc full errors.
  219. - toolbar optinal on the left/bottom side of the main window. 
  220. - different cept window sizes.
  221. - new filetransfer options.
  222. - autologon in cept emulation didn't work.
  223.  
  224. Changes 0.90b-0.91b
  225. -------------------
  226. - new online time without seconds (desktop font).
  227. - removed some filetransfer bugs.
  228. - included a cursor into the cept emulation.
  229. - cursor on/off didn't work. (ANSI/VT100)
  230.   ESC[?25h = cursor on
  231.   ESC[?25l = cursor off
  232. - under some circumstances WAIT "what ever" didn't work.
  233. - new "Function keys emulation" option in the terminal configuration window.
  234.   (turns the function key emulation on/off)
  235.  
  236. Changes 0.89b-0.90b
  237. -------------------
  238. - removed the !default! file in <connector$dir>.Scripts
  239. - claiming/releasing the serial port worked only with the internal port.
  240. - improved the file transfer receiving speed on high baud rates (115200).
  241.   got only 9000 cps now its about 11000 cps.
  242. - pressing the menu mouse button on the telephone book icon (toolbar)
  243.   opens a dial menu.
  244.  
  245. Changes 0.88b-0.89b
  246. -------------------
  247. - removed some XYZModem bugs. (aborting should work now)
  248.   riscos filetype sending/receiving not included yet.
  249. - resizeable telephone book window.
  250. - with some modems the autologon script aborted too early.
  251. - moved the modem status from the iconbar to the main window.
  252. - iconbar shows optionally the modem lines,serial portnumber and serial rx/tx.
  253. - configureable tx window size.
  254. - download directory (edit window) didn't work.
  255.  
  256. Changes 0.87b-0.88b
  257. -------------------
  258. - included the linux XYZModem code, don't expect too much.
  259. - removed the kermit code.
  260. - forgot to copy the new !Sprites file.
  261.  
  262. Changes 0.86b-0.87b
  263. -------------------
  264. - better text export.
  265. - pressing adjust on the icon bar icon releases the serial port,
  266.   pressing it again claims the serial port.Connector also releases
  267.   the serial port when another application tries to claim the serial port.
  268. - pressing select opens the main window centered on screen.
  269.   When the window is already open it will just move in front, with doppel click
  270.   it moves in the center of the screen.
  271.  
  272. Changes 0.85b-0.86b
  273. -------------------
  274. - new optional auto logon.
  275. - WAIT "xyz" didn't work always, I hope it does now.
  276. - dragging a file on the file transfer icon (on the tool bar)
  277.   starts the file transfer.
  278. - better ascii sending.
  279. - in lowres screen modes the main window was 2 pixel to small
  280.   (only after dialling).
  281. - some template changes.
  282. - the zmodem sending should work better now, if not I will use
  283.   a completely other code (found some linux source code).
  284. - and again removed a wrap bug in ansi and vt100.
  285. - new block drivers (Rev 12).
  286.  
  287. Changes 0.84b-0.85b
  288. -------------------
  289. - removed a other wrap bug in ansi and vt100.
  290. - there is still a bug in the zmodem sending code :-(
  291.  
  292. Changes 0.83b-0.84b
  293. -------------------
  294. - included memory data transfer (drag/drop).
  295. - included ZModem crash recovery.
  296. - the filetransfer window didn't update (very often) when transfering
  297.   large files ( >1MB ).
  298. - included CEPT emulation (SpoolBTX is a demo file).
  299. - included the mousebuffer again.
  300. - removed a wrap bug in ansi emulation.
  301. - removed (text import converts now &0a in &0d&0a), but I will
  302.   make this optional in the next release.
  303. (I got my bebox some weeks ago so there wasn't much time
  304.  left for the acorn :-) )
  305.  
  306. Changes 0.82b-0.83b
  307. -------------------
  308. - removed some filetransfer bugs.
  309. - pressing select on the logon status line opens a menu to cancel the logon.
  310. - text import converts now &0a in &0d&0a.
  311. - dragging on selected text areas exports it.
  312. - triple click selects a line.
  313.  
  314. Changes 0.81b-0.82b
  315. -------------------
  316. - better memory handling using flexlib.
  317. - slightly improved text redraw speed.(about 25% faster)
  318. - multiple telephone numbers.
  319. - double click in the main window selects a word.
  320. - completely new XYZModem and Kermit code.
  321.  
  322. Changes 0.80b-0.81b
  323. -------------------
  324. - better lowres sprites, many thanks to Darren Salt.
  325. - filetype setting didn't work if the extension was smaller than 3 chars.
  326. - VT100 colours changed only after restarting !Connector.
  327. - If there was a non script file in the scripts directory the
  328.   computer hanged while starting !Connector.
  329.  
  330. Changes 0.79b-0.80b
  331. -------------------
  332. - removed the Win95 style windows.
  333. - included new script file format.
  334. - status line for logon.
  335. - multiple donwload directories.
  336. - included left,right,up,down scrolling in Ansi emulation.
  337. - overwrite option for zmodem filetransfer.
  338.  
  339. Changes 0.78b-0.79b
  340. -------------------
  341. - switchable 24/25 line mode(ANSI).
  342. - Main-Window-Title shows Mailbox name, if online.
  343. - removed some attribute bugs in Ansi and VT102.
  344. - included blinking text attribute.
  345. - new spool file with some blinking text(ANSI).
  346. - send  riscos-filetypes can be turned off.
  347. - file upload didn't work on my a5000 but on my RiscPC everything
  348.   was ok.I recompiled all and it worked ?
  349.  
  350. Changes 0.77b-0.78b
  351. -------------------
  352. - text only spoolfiles converts now some ansi-font-codes to riscos-codes.
  353. - pressing adjust on the play button in the spool-window steps
  354.   only one char further on.
  355. - pause button in spool-window.
  356. - zmodem sends/receives riscos-filetypes.
  357. - fixed a TAB bug in VT102.
  358. - data/text-spoolfile-status can be saved with terminal status.
  359. - a more compact Configure Window.
  360. - removed isofont option.
  361. - pressing adjust on the close icon loses the input focus of the main
  362.   window.(pressing F12 works only if the main window has no input focus)
  363.  
  364. Changes 0.76b-0.77b
  365. -------------------
  366. - included normal/application Cursorkey Mode(VT100).
  367. - removed a small redial bug.
  368. - included 24/25 line mode(ANSI).
  369. - Ascii filetransfer.
  370.  
  371. Changes 0.75b-0.76b
  372. -------------------
  373. - better multitasking while fast scrolling.
  374. - fixed some zmodem bugs.
  375. - german keyboard option didn't work in ansi emulation.
  376.  
  377. Changes 0.74b-0.75b
  378. -------------------
  379. - text only spoolfiles.
  380. - fixed text update bug when scrolling up and down.
  381. - Chat Mode.
  382. - fixed hangup bug.
  383. - hopefully a better text import.
  384. - cycle dial.
  385.  
  386. Changes 0.73b-0.74b
  387. -------------------
  388. - Filetype Conversion.
  389. - new optional hangup (droping DTR line).
  390. - wrong cps rate when skipping file.
  391. - better serial port number selection.
  392. - isofont for vt100.
  393. - 'prompt' strings longer than 20 chars work now (in the script file).
  394. - 'reply' string with control chars ( ESC, RETURN ... ).
  395. - script files will be closed after hangup, offline or quit.
  396. - included cursor originmode in VT100 emulation.
  397. - updated the Helpfile a bit.
  398.  
  399. Changes 0.72b-0.73b
  400. -------------------
  401. - no 'online time' flicker.
  402. - new configure and edit window.
  403.   (if you don't like them I will use the old ones again ;-) )
  404.  
  405. Changes 0.71b-0.72b
  406. -------------------
  407. -  file recovery didn't work.
  408. - another small receive ZModem file recovery bug.
  409. - filetransfers works now with longfilenames.
  410.   this was (is) a really strange bug.
  411.   After "File_Exists(name);" the "File_Open(name, file_WRITE);" crashed.
  412.   the computer.(only with !LongFiles and filenames with about >20 Chars).
  413.   I put this between.
  414.   file=File_Open("<connector$dir>.!Runimage",file_READ);
  415.   File_Close(file);
  416.   (open an existing file and closing it again)
  417.   and it worked.
  418.  
  419.  
  420. Changes 0.70b-0.71b
  421. -------------------
  422. - removed a VT100 bug ( tried to plot ascii 0 )
  423. - dragging a spool file opens the spool window not centered if already open
  424. - removed ZModem file recovery bug
  425.  
  426. Changes 0.69b-0.70b
  427. -------------------
  428. - removed a set-cursor-position bug (VT100)
  429. - some telephonebook bugs
  430. - pressing return in the dial-window will dial now :-)
  431. - After closing the dial-window it gives the input focus back.
  432.  
  433. Changes 0.68b-0.69b
  434. -------------------
  435. - removed Send zmodem bug, what a nice bug just a wrong Iconnumber. :-(
  436. - cleared a line after scrolldown with wrong background color (VT100)
  437.  
  438. Changes 0.67b-0.68b
  439. -------------------
  440. - removed dial bug
  441. - changed demo script file
  442. - removed some vt100 emulation bugs
  443.  
  444. Changes 0.66b-0.67b
  445. -------------------
  446. - pressing adjust on the connector icon opens the Main Window 'where ever'
  447. - Auto Logon Scripts
  448. - Redial with timedelay
  449. - new Filetransfer Window
  450. - dragging of Telephonebook records
  451.  
  452. Changes 0.65b-0.66b
  453. -------------------
  454. - new Font with control chars (0-31)
  455. - removed invert bug in ansi emulation
  456.  
  457. Changes 0.60b-0.65b
  458. -------------------
  459. - rewrote the whole thing using desklib
  460. - serial input and output buffer
  461. - resizeable text buffer
  462. - VT100 Colours
  463. - Spool Function
  464. - new autostart code for zmodem receive, hope it works now.
  465. - delete/insert char/line in Ansi Emulation
  466.  
  467.  
  468.